Platform Explorer / Nuxeo Platform 6.0

Extension point factories

Documentation

Publish a class that will be call backed at initialization time for registering resources.

The following information have to be provided : the fully qualified factory class name. The referenced class should implement ResourceFactory class.

The following line figures out how to publish a factory.
<factory class="my.FactoryClass">

Contribution Descriptors

  • Class: org.nuxeo.runtime.management.ResourceFactoryDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-core-storage-sql-management-6.0.jar
    <extension point="factories" target="org.nuxeo.runtime.management.ResourcePublisher">
        <factory class="org.nuxeo.ecm.core.storage.sql.management.SQLRepositoryStatusFactory" name="SQLRepositoryStatus"/>
      </extension>
  • nuxeo-core-management-6.0.jar
    <extension point="factories" target="org.nuxeo.runtime.management.ResourcePublisher">
        <factory class="org.nuxeo.ecm.core.management.StatusesManagementFactory" name="managementStatusesFactory"/>
        <factory class="org.nuxeo.ecm.core.management.events.EventMonitoringFactory" name="EventMonitoring"/>
         <factory class="org.nuxeo.ecm.core.management.works.WorksMonitoringFactory" name="WorkMonitoring"/>       
      </extension>